home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 14 / CU Amiga Magazine's Super CD-ROM 14 (1997)(EMAP Images)(GB)(Track 1 of 3)[!][issue 1997-09].iso / CUCD / Programming / IEditor / ARexx / AddFunction.ie next >
Encoding:
Text File  |  1997-06-17  |  531 b   |  37 lines

  1. /*
  2. **  $VER: AddFunction.ie 1.0 (2.5.96)
  3. **
  4. **  © 1996 Simone Tellini
  5. **
  6. **  PROGRAMNAME:  AddFunction.ie
  7. **
  8. **  FUNCTION:     Adds a function to the selected gadgets.
  9. **                Requires 'Function.iex'.
  10. **
  11. **  $HISTORY:
  12. **
  13. **   02 May 1996 : 000.001 : initial release
  14. */
  15.  
  16. OPTIONS RESULTS
  17.  
  18. SIGNAL ON ERROR
  19.  
  20. ADDRESS 'IEDITOR.1'
  21.  
  22. /*---------------- INSERT HERE YOUR CODE ------------------*/
  23.  
  24. 'ADDFUNCTION'
  25.  
  26. /*---------------------------------------------------------*/
  27.  
  28. EXIT
  29.  
  30.  
  31. ERROR:
  32.  
  33. say 'Error' RC 'on line' SIGL
  34.  
  35. EXIT RC
  36.  
  37.